home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / roxen_counter.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # Copyright 2000 by Hendrik Scholz <hendrik@scholz.net>
  3. #
  4. # Minor changes by rd :
  5. #
  6. # - check for the error code in the first line only
  7. # - compatible with no404.nasl
  8. #
  9. if(description)
  10. {
  11.  script_id(10207);
  12.  script_version ("$Revision: 1.13 $");
  13.  name["english"] = "Roxen counter module";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "The Roxen Challenger webserver is running and the counter module is installed.
  17. Requesting large counter GIFs eats up CPU-time on the server. If the server does not support threads this will prevent the server from serving other clients.
  18.  
  19. Solution : Disable the counter-module. There might be a patch available in the future. 
  20.  
  21. Risk factor : High";
  22.  
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "Roxen counter module installed ?";
  27.  
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2000 Hendrik Scholz");
  34.  
  35.  family["english"] = "CGI abuses";
  36.  script_family(english:family["english"]);
  37.  
  38.  script_dependencie("find_service.nes", "no404.nasl");
  39.  script_require_ports("Services/www", 80);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45.  
  46. include("http_func.inc");
  47.  
  48. port = get_http_port(default:80);
  49.  
  50. if(get_port_state(port))
  51. {
  52.  name = string("www/no404/", port);
  53.  no404 = tolower(get_kb_item(name));
  54.  data = string("/counter/1/n/n/0/3/5/0/a/123.gif");
  55.  data = http_get(item:data, port:port);
  56.  soc = http_open_socket(port);
  57.  if(soc)
  58.  {
  59.   send(socket:soc, data:data);
  60.   line = recv_line(socket:soc, length:1024);
  61.   buf = http_recv(socket:soc);
  62.   buf = tolower(buf);
  63.   must_see = "image";
  64.   http_close_socket(soc);
  65.   if(no404)
  66.   {
  67.     if(no404 >< buf)exit(0);
  68.   }
  69.   if((" 200 " >< line)&&(must_see >< buf))security_warning(port);
  70.  }
  71. }
  72.  
  73.